OrderedDictionary Constructor

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Creates a new OrderedDictionary. The TKey must implemented IComparable<TKey> or IComparable. The CompareTo method of this interface will be used to compare keys in this dictionary.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public OrderedDictionary()
Visual Basic (Declaration)
Public Sub New
Visual C++
public:
OrderedDictionary ()

Exceptions

ExceptionCondition
System..::InvalidOperationExceptionTKey does not implement IComparable<TKey>.

See Also